home *** CD-ROM | disk | FTP | other *** search
- (*---------------------------------------------------------------------------*)
- (* Issue_Prompt -- Issue prompt for PibList command entry *)
- (*---------------------------------------------------------------------------*)
-
- PROCEDURE Issue_Prompt;
-
- (*---------------------------------------------------------------------------*)
- (* *)
- (* Routine: Issue_Prompt *)
- (* *)
- (* Purpose: Issue prompt for PibList command entry *)
- (* *)
- (* Calling Sequence: *)
- (* *)
- (* Issue_Prompt; *)
- (* *)
- (* Calls: *)
- (* *)
- (* GoToXY *)
- (* Window *)
- (* ClrEol *)
- (* TextBackground *)
- (* TextColor *)
- (* *)
- (* Called By: Display_Screen *)
- (* *)
- (*---------------------------------------------------------------------------*)
-
- VAR
- fc: INTEGER;
-
- BEGIN (* Issue_Prompt *)
-
- Window( 1 , 1 , 80 , 25 );
- GoToXY( 1 , 25 );
- ClrEol;
-
- TextBackground( White );
- TextColor( Status_Line_Color );
-
- IF lpt AND (first_col = 2) THEN
- fc := 1
- ELSE
- fc := first_col;
-
- WRITE('[P', bot^.pnum:1:0,
- ' S', (INT((bot^.lnum-1) / Height) + 1):1:0,
- ' L', bot^.lnum:1:0,
- ' C', fc:1,
- ' W', width:1, ']',
- ' (Enter ? for help) ? ');
-
- TextBackground( BackGround_Color );
- TextColor( Spec_Chars_Color );
-
- END (* Issue_Prompt *);